home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / unix / include / sys / timeb.h < prev    next >
C/C++ Source or Header  |  1992-07-08  |  145b  |  13 lines

  1. #ifndef _TIMEB_H
  2. #define _TIMEB_H
  3.  
  4. struct timeb
  5. {
  6.   time_t   time;
  7.   unsigned short millitm;
  8.   short    timezone;
  9.   short    dstflag;
  10. };
  11.  
  12. #endif
  13.